home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / wndwc20.zip / EX2.C < prev    next >
Text File  |  1989-03-06  |  739b  |  22 lines

  1. /*     EXAMPLE 2:  Protected underlay
  2.      ----------------------------------------------------------------------*/
  3.      #include <conio.h>
  4.      #include <dos.h>
  5.      #include "wndwc20.h"
  6.  
  7.      void main()
  8.      {
  9.          qinit();
  10.          initwindow( LIGHTGRAY_BG, 1, 0 );
  11.          wwritec( 12, "Base Window" );
  12.          setwindowmodes( ZOOMMODE+SHADOWRIGHT );
  13.          makewindow( 5, 20, 15, 40, WHITE+BLUE_BG, CYAN+BLUE_BG,
  14.                      SINGLE_BORDER, AWINDOW );
  15.          titlewindow( TOP, LEFT, YELLOW+BLUE_BG, " My First Window " );
  16.          wwritec( 7, "Making windows is easy!" );
  17.          delay(2000);
  18.          removewindow();   /* Remove the window and restore underlay. */
  19.          getch();
  20.      }
  21.  
  22.